module Base
{
    imports
	{
		Base
	}

    recipe Make Distiller Materials
    {
	  ScrapMetal=16,
	  SheetMetal=6,
	  SmallSheetMetal=4,
	  MetalPipe=6,
	  Screws=22,
	  MetalBar=6,
	  Wire=4,
	  Plank=4,
	  Nails=8,
	  BlowTorch=10,
	  keep [Recipe.GetItemTypes.WeldingMask],
     

      Result:Distiller,
	  Time:1000.0,
	  Category:Welding,
	  SkillRequired:MetalWelding=6,
	  CanBeDoneFromFloor:true,
	  OnGiveXP:Recipe.OnGiveXP.MetalWelding10,
	  AnimNode:BlowTorchMid,
	  Prop1:BlowTorch,
	  Sound:BlowTorch,
	  NeedToBeLearn:true,
    }
	
	recipe Distiller ethanol
    {
	  keep Distiller,
	  Heat:-0.22,
	  Sugar/SugarBrown = 1,
	  Corn = 16,
	  Water = 18,
	  destroy EmptyPetrolCan,
     

      Result:EthanolCan,
	  OnCreate:ReturnSugarPackage_OnCreate,
	  Time:4000.0,
	  Category:Survivalist,
	  SkillRequired:Cooking=5,
	  CanBeDoneFromFloor:true,
	  OnGiveXP:Recipe.OnGiveXP.Cooking10,
	  Sound:BoilingFood,
	  NeedToBeLearn:true,
	  AllowRottenItem:true,
    }
	
	recipe Make gasohol
    {
	  PetrolCan/WinePetrol/WhiskeyPetrol/PetrolPopBottle/WaterBottlePetrol/PetrolBleachBottle = 1,
	  EthanolCan = 7,
	  destroy EmptyPetrolCan,
     

      Result:PetrolCan,
	  Time:200.0,
	  Category:Survivalist,
	  CanBeDoneFromFloor:false,
	  OnGiveXP:Recipe.OnGiveXP.Cooking3,
	  Sound:PourWaterIntoObject,
	  NeedToBeLearn:true,
    }
	
	recipe Make Bottle of Disinfectant
    {
	  WaterBottleEmpty/PopBottleEmpty = 1,
	  EthanolCan = 1,
     

      Result:Disinfectant,
	  Time:200.0,
	  Category:Health,
	  CanBeDoneFromFloor:false,
	  OnGiveXP:Recipe.OnGiveXP.None,
	  Sound:PourWaterIntoObject,
	  NeedToBeLearn:false,
    }
	
}